home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PsL Monthly 1993 December
/
PSL Monthly Shareware CD-ROM (December 1993).iso
/
prgmming
/
dos
/
c
/
tcclib.exe
/
PUSHCUR.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1989-07-18
|
178 b
|
15 lines
#include <conio.h>
int CC_PUSHX, CC_PUSHY;
void PushCurpos()
{
CC_PUSHX = wherex();
CC_PUSHY = wherey();
}
void PopCurpos()
{
gotoxy( CC_PUSHX, CC_PUSHY );
}